home *** CD-ROM | disk | FTP | other *** search
/ Digitální fotografie a video / Digitalni-fotografie-a-video-covermount.bin / Aplikace / Instal.dxr / 00005_Najezd instal.ls < prev    next >
Encoding:
Text File  |  1998-05-19  |  819 b   |  37 lines

  1. property Soubor
  2.  
  3. on getPropertyDescriptionList
  4.   set description to [:]
  5.   addProp(description, #Soubor, [#comment: "Soubor:", #format: #string, #default: EMPTY])
  6.   return description
  7. end
  8.  
  9. on getBehaviorDescription
  10.   return "N├íjezd a klik"
  11. end
  12.  
  13. on beginSprite me
  14.   set the visible of sprite the spriteNum of me to 1
  15.   set the visible of sprite (the spriteNum of me + 1) to 0
  16. end
  17.  
  18. on mouseEnter me
  19.   puppetSound(1, "Najezd")
  20.   set the cursor of sprite the spriteNum of me to [member "ruka_1", member "ruka_2"]
  21.   set the visible of sprite (the spriteNum of me + 1) to 1
  22. end
  23.  
  24. on mouseLeave me
  25.   set the cursor of sprite the spriteNum of me to -1
  26.   set the visible of sprite (the spriteNum of me + 1) to 0
  27. end
  28.  
  29. on mouseDown me
  30.   puppetSound(1, "Klik")
  31. end
  32.  
  33. on mouseUp me
  34.   global Cesta
  35.   open(Cesta & "Demo\" & Soubor)
  36. end
  37.